const runtime.bias64
8 uses
runtime (current package)
softfloat64.go#L14: bias64 = -1<<(expbits64-1) + 1
softfloat64.go#L46: exp += bias64 + 1
softfloat64.go#L56: exp += bias64
softfloat64.go#L118: if exp >= 1<<expbits64-1+bias64 {
softfloat64.go#L121: if exp < bias64+1 {
softfloat64.go#L122: if exp < bias64-int(mantbits64) {
softfloat64.go#L127: for exp < bias64 {
softfloat64.go#L141: return sign | uint64(exp-bias64)<<mantbits64 | mant&(1<<mantbits64-1)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |